home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat2 / contour.2 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. contour(2)                     Scilab Function                     contour(2)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   contour - level curves of surface
  13.  
  14. CALLING SEQUENCE
  15.   contour(x,y,z,nz,[theta,alpha,caption,flag,bbox,zlev])
  16.  
  17. PARAMETERS
  18.  
  19.   x,y       : two real vectors of size respectively (1,n1) and (1,n2).
  20.  
  21.   z         : real matrix of size (n1,n2) (values)
  22.  
  23.   nz        : real vector of size > 1 (the level values)  or an integer ( the
  24.             number of level curves ).
  25.  
  26.   flag      : is a real vector of size three [mode,type,box]
  27.  
  28.   zlev      : real number
  29.  
  30.   [rest]    : see plot3d
  31.  
  32. DESCRIPTION
  33.   Draws level curves of a surface z=f(x,y). The other arguments are optional,
  34.   they are the same as for the function plot3d (exept zlev) and their meaning
  35.   are the same. They control the drawing of level curves on a 3D plot.  Only
  36.   flag(1)=mode has a special meaning.
  37.  
  38.        mode=0    : the level curves are drawn on the surface defined by
  39.                  (x,y,z)
  40.  
  41.        mode=1    : the level curves are drawn on a 3D plot and on the plan
  42.                  defined by equation z=zlev
  43.  
  44.        mode=2    : The level curves are drawn on a 2D plot.
  45.  
  46.   Enter the command contour() to see a demo.
  47.  
  48. SEE ALSO
  49.   fcontour
  50.  
  51. AUTHOR
  52.   J.Ph.C..
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.